home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / cutils.arc / FILE.H < prev    next >
Text File  |  1985-08-30  |  1KB  |  32 lines

  1. /*
  2.                 AUTHOR          Jon Wesener
  3.                 DATE             7 / 8/ 85
  4.                 PURPOSE           This is the include file to be
  5.                                 used with the Lattice library's
  6.                                 file manipulation commands
  7. */
  8.  
  9. /* Create File Attributes */
  10.  
  11. #define        FC$NORM        0    /* NORMAL */ 
  12. #define         FC$RD_O         1       /* READ ONLY */
  13. #define         FC$HID          2       /* HIDDEN */
  14. #define         FC$SYS          4       /* SYSTEM */
  15.  
  16. /* Open File Accesses */
  17.  
  18. #define         FO$READ         0       /* READ */
  19. #define         FO$WRTE         1       /* WRITE */
  20. #define         FO$UPDT         2       /* UPDATE */
  21.  
  22. /* Fmove Bases */
  23.  
  24. #define         FM$BOF          0       /* BEGINNING OF FILE */
  25. #define         FM$CUR          1       /* CURRENT POSITION IN FILE */
  26. #define         FM$EOF          2       /* END OF FILE */
  27.  
  28. /* File Read and Write Channels */
  29.  
  30. #define         STDIN           0
  31. #define         STDOUT          1
  32. #define         STDERR          2